home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr53
/
pctv4n_1.zip
/
QCOLINFO.H
< prev
next >
Wrap
Text File
|
1993-06-10
|
650b
|
27 lines
/**************************************************
* FILE NAME: qcolumn.h TITLE: column information
*
* AUTHOR: Ken North Resource Group, Inc.
* 2604B El Camino Real, #351
* copyright(c)1992 Carlsbad, CA 92008
**************************************************
* SYNOPSIS:
* column information for QELib
***************************************************/
#ifndef __QCOLINFO_H
#define __QCOLINFO_H
typedef struct
{
int DataType;
int Length;
int Scale; /* decimal places */
int NameLen;
char ColName [NAMELENGTH];
} COLUMNS;
#endif